home *** CD-ROM | disk | FTP | other *** search
- // -----
- // VDL166.txt
- // Copyright 1996 Claris
- // -----
-
-
- // Nonmodal Help window toolbar
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED STRING CONSTANTS BEGIN **************************************/
-
- //This section contains all localizable string constants for this VDL program. Be sure to
- //include the backslash character at the end of each line of a multi-line string, except for the last line.
- //You may also flatten multiline constants into a single line, if you prefer
-
-
- //WINDOWS LOCALIZER: Note that there are no '&' chars in these strings - hotkeys
- //are not functional in HomePage document windows, so the hotkey char
- //is left out here.
-
- #define kLit1 "Contents"
- #define kLit2 "Display help topics"
- #define kLit3 "Using Help"
- #define kLit4 "Display instructions for using this Help window"
- #define kLit5 "Back"
- #define kLit6 "Back up to the previous help topic"
- #define kLit7 "Index"
- #define kLit8 "Display help index"
-
-
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
- /************************** LOCALIZED STRING CONSTANTS END **************************************/
-
-
-
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS BEGIN **************************************/
-
- //This section contains integer constants that are used to format this VDL program.
- //These are localizable - they only need to be changed if the localized strings
- //are sufficiently longer than the US strings. Localize the strings first, then the constants.
-
-
-
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
- /************************** LOCALIZED NUMERICAL CONSTANTS END **************************************/
-
- //No further localizable data past this point
-
- /************************** END LOCALIZABLE DATA ***************************************************/
- /************************** END LOCALIZABLE DATA ***************************************************/
- /************************** END LOCALIZABLE DATA ***************************************************/
-
-
- #define EH EnabledHelpString =
-
- #define Gap Spacer(Width=10, Height=UseParent)
-
- #define ccHelpTopics 3450
- #define ccHelpUsing 3451
- #define ccHelpIndex 3452
- #define ccNonModalHelpBack 3459
-
- Define(MainToolbarList)
- HList(BackColor = {57015, 57015, 57015}, Width = UseParent)
- {
- PushButton( kLit1, ccHelpTopics, "None",
- EH kLit2 );
- Gap;
- PushButton( kLit7, ccHelpIndex, "None",
- EH kLit8 );
- Gap;
- PushButton( kLit3, ccHelpUsing, "None",
- EH kLit4 );
- Spacer(Width=UseParent, Height=UseParent);
- PushButton( kLit5, ccNonModalHelpBack, "None",
- EH kLit6 );
- } // HList
-
-
- #if Platform_Mac
- Margin(2,2,2,3, Custom = "HeaderBarMarginProc", Width = UseParent)
- Margin(4,3,3,4, BackColor = {57015, 57015, 57015})
- Call(MainToolbarList);
- #else
- VList(Width = UseParent, BackColor = Dialog)
- {
- Margin(4,4,4,4, Width = UseParent)
- Call(MainToolbarList);
-
- Spacer(Height = 1, Width = UseParent, BackColor = DkGray);
- Spacer(Height = 1, Width = UseParent, BackColor = Black);
- }
- #endif
-
-